595524fdc1f0ec52acf376b9fbd52885688c5685,src/main/java/com/twilio/types/OutboundCallPrice.java,OutboundCallPrice,equals,#Object#,29

Before Change



        OutboundCallPrice that = (OutboundCallPrice) o;

        if (Double.compare(that.basePrice, basePrice) != 0) return false;
        return Double.compare(that.currentPrice, currentPrice) == 0;

    }

After Change


        }

        OutboundCallPrice that = (OutboundCallPrice) o;
        return Objects.equals(this.basePrice, that.basePrice) &&
               Objects.equals(this.currentPrice, that.currentPrice);
    }